Lender Price API
Locking a Loan Without LOS / 6. Reprice / 6.6 Add Request Lock Event
In This Topic
    6.6 Add Request Lock Event
    In This Topic

    Path

    POST /rest/v1/lp-ppe-api/price-quote/addLockEvent
    

    Headers         

    Authorization
    
    Bearer {{accessToken}}
    

    Body

    Copy Code
    {
      "priceQuoteId": "{{priceQuoteId}}",
      "lockId": "{{lockId}}",
      "lockStatusId": "{{repriceAfterLockStatusId}}",
      "userIdToUseWorseCase": "{{userId}}",
      "lockEventExceptionInfo": null,
      "lockEventExtensionInfo": null,
      "scenario": {{scenario}},
      "lockDateUpdate": null,
      "hasSellSide": false,
      "historicalPricing": true,
      "exportAndLock": true,
      "lockEventId": "{{lockEventId}}",
      "lockEventComment": "Whatever comment you would like",
      "overrideSetting": {
        "newExtensionFee": 0,
        "newConcessionFee": 0,
        "newRelockFee": 0,
        "newExpirationDate": null
      }
    }

    Example Request

    Copy Code
    curl --location -g '{{protocol}}{{domain}}/rest/v1/lp-ppe-api/price-quote/addLockEvent' \
    --header 'Authorization: Bearer {{accessToken}}' \
    --data '{
      "priceQuoteId": "{{priceQuoteId}}",
      "lockId": "{{lockId}}",
      "lockStatusId": "{{repriceAfterLockStatusId}}",
      "userIdToUseWorseCase": "{{userId}}",
      "lockEventExceptionInfo": null,
      "lockEventExtensionInfo": null,
      "scenario": {{scenario}},
      "lockDateUpdate": null,
      "hasSellSide": false,
      "historicalPricing": true,
      "exportAndLock": true,
      "lockEventId": "{{lockEventId}}",
      "lockEventComment": "Whatever comment you would like",
      "overrideSetting": {
        "newExtensionFee": 0,
        "newConcessionFee": 0,
        "newRelockFee": 0,
        "newExpirationDate": null
      }
    }'

    Example Response

    This request doesn't return a response body.